home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / clients / xwininfo / makefile < prev    next >
Makefile  |  1994-08-12  |  425b  |  33 lines

  1. #
  2. # QOS Makefile for DJGPP.
  3. #
  4.  
  5. CFLAGS= -O -c -DMSDOS
  6.  
  7. all: makefile.tag xwininfo.exe
  8.  
  9. O =    xwininfo.o \
  10.     dsimple.o
  11.  
  12. .c.o:
  13.     gcc $(CFLAGS) $<
  14.  
  15. L =  -lxmu -lxext -lx11 -lsys
  16.  
  17. xwininfo.exe : makefile.tag  $(O)
  18.     gcc -o xwininfo $(O) $(L)
  19.     strip xwininfo
  20.     coff2exe xwininfo
  21.     del xwininfo
  22.  
  23. makefile.tag:
  24.     del *.tag
  25.     del *.obj
  26.     del *.o
  27.     del *.map
  28.     del *.exp
  29.     del *.exe
  30.     del *.rsp
  31.     echo >makefile.tag
  32.  
  33.